Micron Document
baubs git

Node / mirrors / respira / files / src / components / ui / skeleton.tsx

Displaying Raw • Download

src/components/ui/skeleton.tsx 7c3f79ae7e650afb91efa82d004cbfa04424f3c0 (7c3f79ae) Text, 279 B

import { cn } from "@/lib/utils";

function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
return (
<div
data-slot="skeleton"
className={cn("bg-accent animate-pulse rounded-md", className)}
{...props}
/>
);
}

export { Skeleton };

Served by rngit 1.4.2 - Generated in 0.03s